The unstructured way to control the execution flow in a program. "goto" may also be written "go to" (note that goto, go and to are all reserved words).
The target of a goto is usually a label. A label is an identifier, followed by a colon, that labels a statement. Labels need not be declared.
Normal scope rules apply. You may goto out of blocks (classes, procedures), but not into them. You may not goto into for-statements, and should not goto into any structured statement.
The target of a goto may also be a switch-element.